home *** CD-ROM | disk | FTP | other *** search
/ Champak 139 / (Vol 139) Sep 24 2011.iso / Games / xtreme_tugboating.swf / scripts / DefineSprite_59_fishget / frame_1 / DoAction.as
Text File  |  2011-09-24  |  276b  |  15 lines

  1. _xscale = 0;
  2. _yscale = 0;
  3. count = random(100) * 0.1;
  4. onEnterFrame = function()
  5. {
  6.    count++;
  7.    _rotation = Math.sin(count) * 10;
  8.    _xscale = _xscale + (100 - _xscale) * 0.2;
  9.    _yscale = _xscale;
  10.    if(_xscale >= 99)
  11.    {
  12.       this.removeMovieClip();
  13.    }
  14. };
  15.